home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 November / Software of the Month - Ultimate Collection Shareware 278.iso / pc / Programs / Productivity / Compass / Templates / Nesting List.tpl < prev    next >
Encoding:
Text File  |  2000-03-02  |  2.8 KB  |  137 lines

  1. #############################################################################
  2. # Compass Sample Export Template
  3. # Nesting List.tpl
  4. #############################################################################
  5.  
  6. %AUTO_VIEW=Y
  7.  
  8. #############################################################################
  9. # BOOKMARKS
  10. #############################################################################
  11.  
  12. {BOOKMARKS}
  13. <li><a href="$URL$">$TITLE$</a>
  14. {/BOOKMARKS}
  15.  
  16. #############################################################################
  17. # LEVEL5
  18. # Use (A) option to output All bookmarks of level 5 and deeper.
  19. #############################################################################
  20.  
  21. {FOLDERS:LEVEL5}
  22. {/FOLDERS}
  23.  
  24. {F5(A):LEVEL5}
  25. <li><h5>$TITLE$</h5>
  26. <ul>
  27. $BOOKMARKS$
  28. </ul>
  29. {/F5}
  30.  
  31. #############################################################################
  32. # LEVEL4
  33. #############################################################################
  34.  
  35. {FOLDERS:LEVEL4}
  36. {/FOLDERS}
  37.  
  38. {F4:LEVEL4}
  39. <li><h4>$TITLE$</h4>
  40. <ul>
  41. $BOOKMARKS$
  42. $LEVEL5$
  43. </ul>
  44. {/F4}
  45.  
  46. #############################################################################
  47. # LEVEL3
  48. #############################################################################
  49.  
  50. {FOLDERS:LEVEL3}
  51. {/FOLDERS}
  52.  
  53. {F3:LEVEL3}
  54. <li><h3>$TITLE$</h3>
  55. <ul>
  56. $BOOKMARKS$
  57. $LEVEL4$
  58. </ul>
  59. {/F3}
  60.  
  61. #############################################################################
  62. # LEVEL2
  63. #############################################################################
  64.  
  65. {FOLDERS:LEVEL2}
  66. {/FOLDERS}
  67.  
  68. {F2:LEVEL2}
  69. <li><h2>$TITLE$</h2>
  70. <ul>
  71. $BOOKMARKS$
  72. $LEVEL3$
  73. </ul>
  74. {/F2}
  75.  
  76. #############################################################################
  77. # LEVEL1
  78. #############################################################################
  79.  
  80. {FOLDERS:LEVEL1}
  81. {/FOLDERS}
  82.  
  83. {F1:LEVEL1}
  84. <li><h1>$TITLE$</h1>
  85. <ul>
  86. $BOOKMARKS$
  87. $LEVEL2$
  88. </ul>
  89. {/F1}
  90.  
  91.  
  92. #############################################################################
  93. # The main output file:
  94. #############################################################################
  95.  
  96. {MAIN:*.HTM}
  97. <!doctype html public "-//w3c//dtd html 3.2 final//en">
  98. <html>
  99. <head>
  100. <title>Compass $VERSION$ Template - Nesting Sample</title>
  101. <meta name="Generator" content="Compass $VERSION$">
  102. <meta name="Author" content="$USER$">
  103. <meta name="Keywords" content="compass, bookmark, favorite, $USER$">
  104. <meta name="Description" content="Compass $VERSION$ Template - Nesting List Sample">
  105. </head>
  106.  
  107. <style TYPE="text/css">
  108.     BODY
  109.     {
  110.         font-family: Verdana, MS Sans Serif;
  111.         background-color="#FFFFCC";
  112.     }
  113.     A:HOVER
  114.     {
  115.         color:"red";
  116.     }
  117. </style>
  118. </head>
  119.  
  120.  
  121. <body>
  122.  
  123. <center><b>Nesting List Sample</b></center>
  124.  
  125. <br>
  126.  
  127. <ul>
  128. $LEVEL1$
  129. </ul>
  130.  
  131. </body>
  132.  
  133. </html>
  134. {/MAIN}
  135.  
  136. #############################################################################
  137.